Min Property (InputTime<T>)
In This Topic
Gets or sets the earliest time that the user can enter.
Syntax
'Declaration
<JsonAttribute(2)>
<JsonConverterAttribute(C1.Web.Mvc.Serialization.TimeConverter)>
Public Property Min As System.Date
'Usage
Dim instance As InputTime(Of T)
Dim value As System.Date
instance.Min = value
value = instance.Min
[Json(2)]
[JsonConverter(C1.Web.Mvc.Serialization.TimeConverter)]
public System.DateTime Min {get; set;}
public read-write property Min: System.DateTime;
JsonAttribute(2)
JsonConverterAttribute(C1.Web.Mvc.Serialization.TimeConverter)
public function get,set Min : System.DateTime
[Json(2)]
[JsonConverter(C1.Web.Mvc.Serialization.TimeConverter)]
public: __property System.DateTime get_Min();
public: __property void set_Min(
System.DateTime value
);
[Json(2)]
[JsonConverter(C1.Web.Mvc.Serialization.TimeConverter)]
public:
property System.DateTime Min {
System.DateTime get();
void set ( System.DateTime value);
}
See Also